From: Vagrant Cascadian Date: Mon, 10 Jan 2022 22:07:13 +0000 (+0000) Subject: ensure-config-sandbox-for-make-env X-Git-Tag: archive/raspbian/2024.01+dfsg-5+rpi1~3^2^2^2^2^2^2^2^2^2^2^2^2~7 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/%22bookmarks:/?a=commitdiff_plain;h=eba5728c16a44d947ccf2d91b28fac1c2ffb3eeb;p=u-boot.git ensure-config-sandbox-for-make-env Ensure that CONFIG_SANDBOX is set when running "make env", avoiding a failure to build caused by config_distro_bootcmd.h following the wrong codepath... Gbp-Pq: Name ensure-config-sandbox-for-make-env.patch --- diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index d614b7047..d9941c644 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -46,6 +46,9 @@ #ifdef __ASSEMBLY__ #define BOOTENV #else +#ifndef CONFIG_SANDBOX +#define CONFIG_SANDBOX 1 +#endif #include #endif